home *** CD-ROM | disk | FTP | other *** search
/ Aminet 7 / Aminet 7 - August 1995.iso / Aminet / text / hyper / ADtoHT2_1.lha / Source.lha / MyLib.lha / mui / mui_newobjecta.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-29  |  332 b   |  20 lines

  1. #ifdef __GNUC__
  2.  
  3. #ifndef __OPTIMIZE__
  4. #error Please compile this file with -O
  5. #else
  6.  
  7. #define MUI_NewObjectA InlinedMUI_NewObjectA
  8. #include <inline/muimaster.h>
  9. #undef MUI_NewObjectA
  10.  
  11. Object *MUI_NewObjectA(const char *ClassName, const struct TagItem *TagList)
  12.  
  13. {
  14.   return InlinedMUI_NewObjectA(ClassName,TagList);
  15. }
  16.  
  17. #endif
  18.  
  19. #endif
  20.